home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / LINKLIST.ZIP / VOIDLIST.HST < prev   
Encoding:
Text File  |  1996-12-02  |  1.3 KB  |  43 lines

  1. ///////////////////////////////////////////////////////
  2. //                                                   //
  3. //   Linked List Class Functions - Version 1.24      //
  4. //                                                   //
  5. //           By Kevin Campbell 1/12/96               //
  6. //                                                   //
  7. //                                                   //
  8. ///////////////////////////////////////////////////////
  9.  
  10. /*
  11.  
  12.     History :-
  13.  
  14.         V1.24 - 1/12/96 (Released on GameDev)
  15.         Changed all pointers in library so that they
  16.         are no longer explicitly far, thus allowing
  17.         the library to work more effectivly in small
  18.         data models.
  19.  
  20.         V1.23 - 25/10/96
  21.         Fixed Major bug in find(), find was assigning
  22.         data, rather than comparing it.
  23.         Fixed large Bug's in cutfront/end where entry/
  24.         curr_entry were not being updated.
  25.         Added in count() function to restore lists
  26.  
  27.         V1.22 - 18/10/96
  28.         Fixed major bug in last() and next() functions
  29.           = curr_entry was not changed when using these
  30.  
  31.         V1.21 - 15/10/96 (Unreleased)
  32.         Added find() function for use in ORM
  33.  
  34.         V1.20 - 5/9/96  (Unreleased)
  35.         Added Link and cut functions for use in ORM
  36.         Added in use() function.
  37.  
  38.         V1.10 -         (Unreleased)
  39.         Added Operator functions
  40.  
  41.         V1.00 - 22/7/95 (Released on Gamedev)
  42.         Basic library
  43.